home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / libcpufreq0.postrm < prev    next >
Encoding:
Text File  |  2011-12-10  |  1.0 KB  |  46 lines

  1. #! /bin/sh
  2. # postrm script for libcpufreq
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <postrm> `remove'
  10. #        * <postrm> `purge'
  11. #        * <old-postrm> `upgrade' <new-version>
  12. #        * <new-postrm> `failed-upgrade' <old-version>
  13. #        * <new-postrm> `abort-install'
  14. #        * <new-postrm> `abort-install' <old-version>
  15. #        * <new-postrm> `abort-upgrade' <old-version>
  16. #        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
  17. # for details, see http://www.debian.org/doc/debian-policy/ or
  18. # the debian-policy package
  19.  
  20.  
  21. case "$1" in
  22.     remove)
  23.  
  24.     ;;
  25.  
  26.     purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  27.     ;;
  28.  
  29.     *)
  30.         echo "postrm called with unknown argument \`$1'" >&2
  31.         exit 1
  32.  
  33. esac
  34.  
  35. # dh_installdeb will replace this with shell code automatically
  36. # generated by other debhelper scripts.
  37.  
  38. # Automatically added by dh_makeshlibs
  39. if [ "$1" = "remove" ]; then
  40.     ldconfig
  41. fi
  42. # End automatically added section
  43.  
  44.  
  45. exit 0
  46.